EmailSettings
data class EmailSettings(val type: NavigationSpec.Email.Type = Type.Plain, val to: List<String> = emptyList(), val cc: List<String> = emptyList(), val bcc: List<String> = emptyList(), val subject: String? = null, val body: String? = null, val attachments: List<NavigationSpec.Email.Attachment> = emptyList())
Settings for composing the email
Parameters
type
Type used for formatting
to
List of emails to send the email to
cc
List of emails to cc the email to
bcc
List of emails to bcc the emails to
subject
Optional subject of the email
body
Optional body of the email
attachments
List of Attachment to add to the email